home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 019a / short2.zip / READ!.ME! < prev    next >
Text File  |  1991-03-15  |  2KB  |  57 lines

  1. The following is a list of updates to SHORT HAND.
  2.  
  3.         1)  Fix of a bug that prevented expansion when short strings were
  4.             terminated by a question mark.
  5.  
  6.         3)  Addition of an edit function that allows you to edit your memory
  7.             resident short strings.
  8.  
  9.     4)  You can now add the whole gambit of 101 keyboard special keys to
  10.         long string definitions.  The list of special keys is included in
  11.         the documentation.    To insert these keys into a long string use the
  12.         following format:
  13.  
  14.                 \xKEYNAME\
  15.  
  16.                 \x - starts the special key name.
  17.                 \  - ends the key name.
  18.             Look at some of the included SHR files for examples.
  19.  
  20.         5)  You can now add comments to your definitions.  A comment is started
  21.             by \* and continues to the end of the line.
  22.  
  23.     6)  A screen grab feature that allows you to "grab" text from the
  24.         screen.  You can then add a short string assignment to it and save
  25.         it with your other definitions.
  26.  
  27.     7)  A delay switch.  This switch allows you to slow the speed at which
  28.         Short Hand "feeds" characters to your editor.  This is important
  29.         for slow editors that can't handle Short Hand at full speed. If
  30.         your editor acts erractically try this switch first.  The format
  31.         is:
  32.  
  33.         short /s#
  34.             # can be from 0-9.
  35.  
  36.     8)  A suppress option that can be added to any long string.  To add it
  37.         include the flag \xSUP\ to your long string.  Anything after this
  38.         flag will not be fed to your editor.
  39.  
  40.         To appreciate the use of this option consider the following:
  41.  
  42.            A program has the following variables:
  43.  
  44.             screen_top, screen_bottom, screen_right, screen_left
  45.  
  46.            to define a pefix for these variables you could use the
  47.            following:
  48.  
  49.             sc <screen_\xSUP\>
  50.  
  51.            Now if you type: sc<space>left
  52.            you get:        screen_left
  53.            instead of:        screen_ left
  54.  
  55.     9)  The "Quick Define" editor has been greatly enhanced.  It now allows
  56.         you to enter up to the full 255 characters allowed in a long string.
  57.